From b62201e6afb9451a9b44560223894b390574b780 Mon Sep 17 00:00:00 2001 From: "iap10@freefall.cl.cam.ac.uk" Date: Tue, 25 Jan 2005 13:06:39 +0000 Subject: [PATCH] bitkeeper revision 1.1159.229.1 (41f6445fD7VhZd6QcRqU9K9iqEPPzQ) Don't silently ignore failures while building kernels. Signed-off-by: michael.fetterman@cl.cam.ac.uk Signed-off-by: ian.pratt@cl.cam.ac.uk --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 924fbfbaca..8e2988dc08 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ INSTALL_DIR := $(INSTALL) -d -m0755 INSTALL_DATA := $(INSTALL) -m0644 INSTALL_PROG := $(INSTALL) -m0755 -KERNELS ?= linux-2.6-xen0 linux-2.6-xenU +KERNELS ?= linux-2.6-xen0 linux-2.6-xenU linux-2.4-xen0 linux-2.4-xenU netbsd-2.0-xenU # linux-2.4-xen0 linux-2.4-xenU netbsd-2.0-xenU # You may use wildcards in the above e.g. KERNELS=*2.4* @@ -65,7 +65,7 @@ tools: $(MAKE) dist=yes -C tools install kernels: - for i in $(XKERNELS) ; do $(MAKE) $$i-build ; done + for i in $(XKERNELS) ; do $(MAKE) $$i-build || exit 1; done docs: sh ./docs/check_pkgs @@ -84,7 +84,7 @@ kclean: # Make patches from kernel sparse trees mkpatches: - for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch ; done + for i in $(ALLSPARSETREES) ; do $(MAKE) $$i-xen.patch || exit 1; done # build xen, the tools, and a domain 0 plus unprivileged linux-xen images, -- 2.30.2